home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / pam.d / login < prev    next >
Text File  |  2008-06-09  |  3KB  |  85 lines

  1. #
  2. # The PAM configuration file for the Shadow `login' service
  3. #
  4.  
  5. # Outputs an issue file prior to each login prompt (Replaces the
  6. # ISSUE_FILE option from login.defs). Uncomment for use
  7. # auth       required   pam_issue.so issue=/etc/issue
  8.  
  9. # Disallows root logins except on tty's listed in /etc/securetty
  10. # (Replaces the `CONSOLE' setting from login.defs)
  11. auth       requisite  pam_securetty.so
  12.  
  13. # Disallows other than root logins when /etc/nologin exists
  14. # (Replaces the `NOLOGINS_FILE' option from login.defs)
  15. auth       requisite  pam_nologin.so
  16.  
  17. # SELinux needs to be the first session rule. This ensures that any 
  18. # lingering context has been cleared. Without out this it is possible 
  19. # that a module could execute code in the wrong domain.  (When SELinux
  20. # is disabled, this returns success.)
  21. session    required   pam_selinux.so close
  22.  
  23. # This module parses environment configuration file(s)
  24. # and also allows you to use an extended config
  25. # file /etc/security/pam_env.conf.
  26. # parsing /etc/environment needs "readenv=1"
  27. session       required   pam_env.so readenv=1
  28. # locale variables are also kept into /etc/default/locale in etch
  29. # reading this file *in addition to /etc/environment* does not hurt
  30. session       required   pam_env.so readenv=1 envfile=/etc/default/locale
  31.  
  32. # Standard Un*x authentication.
  33. @include common-auth
  34.  
  35. # This allows certain extra groups to be granted to a user
  36. # based on things like time of day, tty, service, and user.
  37. # Please edit /etc/security/group.conf to fit your needs
  38. # (Replaces the `CONSOLE_GROUPS' option in login.defs)
  39. auth       optional   pam_group.so
  40.  
  41. # Uncomment and edit /etc/security/time.conf if you need to set
  42. # time restrainst on logins.
  43. # (Replaces the `PORTTIME_CHECKS_ENAB' option from login.defs
  44. # as well as /etc/porttime)
  45. # account    requisite  pam_time.so
  46.  
  47. # Uncomment and edit /etc/security/access.conf if you need to
  48. # set access limits.
  49. # (Replaces /etc/login.access file)
  50. # account  required       pam_access.so
  51.  
  52. # Sets up user limits according to /etc/security/limits.conf
  53. # (Replaces the use of /etc/limits in old login)
  54. session    required   pam_limits.so
  55.  
  56. # Prints the last login info upon succesful login
  57. # (Replaces the `LASTLOG_ENAB' option from login.defs)
  58. session    optional   pam_lastlog.so
  59.  
  60. # Prints the motd upon succesful login
  61. # (Replaces the `MOTD_FILE' option in login.defs)
  62. session    optional   pam_motd.so
  63.  
  64. # Prints the status of the user's mailbox upon succesful login
  65. # (Replaces the `MAIL_CHECK_ENAB' option from login.defs). 
  66. #
  67. # This also defines the MAIL environment variable
  68. # However, userdel also needs MAIL_DIR and MAIL_FILE variables
  69. # in /etc/login.defs to make sure that removing a user 
  70. # also removes the user's mail spool file.
  71. # See comments in /etc/login.defs
  72. session    optional   pam_mail.so standard
  73.  
  74. # Standard Un*x account and session
  75. @include common-account
  76. @include common-session
  77. @include common-password
  78.  
  79. # SELinux needs to intervene at login time to ensure that the process
  80. # starts in the proper default security context. Only sessions which are
  81. # intended to run in the user's context should be run after this.  (When
  82. # SELinux is disabled, this returns success.)
  83. session required pam_selinux.so open
  84.